home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / ActiveX Controlls / NCTAudioEditor2 ActiveX DLL / NCTAudioEditor2.exe / {app} / Samples / TestDelphiAudioEditor2 / Info.dfm < prev    next >
Encoding:
Text File  |  2002-10-10  |  3.6 KB  |  206 lines

  1. object frmInfo: TfrmInfo
  2.   Left = 641
  3.   Top = 423
  4.   BorderStyle = bsDialog
  5.   Caption = 'File Info'
  6.   ClientHeight = 279
  7.   ClientWidth = 411
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   OnCreate = FormCreate
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Label5: TLabel
  20.     Left = 16
  21.     Top = 12
  22.     Width = 23
  23.     Height = 13
  24.     Caption = 'Title:'
  25.   end
  26.   object Label6: TLabel
  27.     Left = 16
  28.     Top = 36
  29.     Width = 26
  30.     Height = 13
  31.     Caption = 'Artist:'
  32.   end
  33.   object Label7: TLabel
  34.     Left = 16
  35.     Top = 60
  36.     Width = 32
  37.     Height = 13
  38.     Caption = 'Album:'
  39.   end
  40.   object Label12: TLabel
  41.     Left = 16
  42.     Top = 84
  43.     Width = 32
  44.     Height = 13
  45.     Caption = 'Genre:'
  46.   end
  47.   object Label8: TLabel
  48.     Left = 16
  49.     Top = 108
  50.     Width = 47
  51.     Height = 13
  52.     Caption = 'Copyright:'
  53.   end
  54.   object Label9: TLabel
  55.     Left = 16
  56.     Top = 132
  57.     Width = 25
  58.     Height = 13
  59.     Caption = 'Year:'
  60.   end
  61.   object Label10: TLabel
  62.     Left = 16
  63.     Top = 156
  64.     Width = 31
  65.     Height = 13
  66.     Caption = 'Track:'
  67.   end
  68.   object Label11: TLabel
  69.     Left = 16
  70.     Top = 252
  71.     Width = 47
  72.     Height = 13
  73.     Caption = 'Comment:'
  74.   end
  75.   object Label3: TLabel
  76.     Left = 16
  77.     Top = 204
  78.     Width = 50
  79.     Height = 13
  80.     Caption = 'Composer:'
  81.   end
  82.   object Label4: TLabel
  83.     Left = 16
  84.     Top = 228
  85.     Width = 58
  86.     Height = 13
  87.     Caption = 'EncodedBy:'
  88.   end
  89.   object Label13: TLabel
  90.     Left = 16
  91.     Top = 180
  92.     Width = 25
  93.     Height = 13
  94.     Caption = 'URL:'
  95.   end
  96.   object infoTitle: TEdit
  97.     Left = 84
  98.     Top = 8
  99.     Width = 200
  100.     Height = 21
  101.     TabOrder = 0
  102.   end
  103.   object infoArtist: TEdit
  104.     Left = 84
  105.     Top = 32
  106.     Width = 200
  107.     Height = 21
  108.     TabOrder = 1
  109.   end
  110.   object infoAlbum: TEdit
  111.     Left = 84
  112.     Top = 56
  113.     Width = 200
  114.     Height = 21
  115.     TabOrder = 2
  116.   end
  117.   object infoGenre: TComboBox
  118.     Left = 84
  119.     Top = 80
  120.     Width = 200
  121.     Height = 21
  122.     Style = csDropDownList
  123.     ItemHeight = 13
  124.     TabOrder = 3
  125.   end
  126.   object infoCopyright: TEdit
  127.     Left = 84
  128.     Top = 104
  129.     Width = 200
  130.     Height = 21
  131.     TabOrder = 4
  132.   end
  133.   object infoYear: TEdit
  134.     Left = 84
  135.     Top = 128
  136.     Width = 200
  137.     Height = 21
  138.     TabOrder = 5
  139.   end
  140.   object infoTrack: TEdit
  141.     Left = 84
  142.     Top = 152
  143.     Width = 200
  144.     Height = 21
  145.     TabOrder = 6
  146.   end
  147.   object infoComment: TEdit
  148.     Left = 84
  149.     Top = 248
  150.     Width = 200
  151.     Height = 21
  152.     TabOrder = 7
  153.   end
  154.   object btnApply: TButton
  155.     Left = 296
  156.     Top = 40
  157.     Width = 105
  158.     Height = 25
  159.     Caption = 'Apply'
  160.     TabOrder = 8
  161.     OnClick = btnApplyClick
  162.   end
  163.   object btnReset: TButton
  164.     Left = 296
  165.     Top = 8
  166.     Width = 105
  167.     Height = 25
  168.     Caption = 'Reset'
  169.     TabOrder = 9
  170.     OnClick = btnResetClick
  171.   end
  172.   object infoMTV: TRadioGroup
  173.     Left = 297
  174.     Top = 201
  175.     Width = 104
  176.     Height = 70
  177.     Caption = 'Mpeg Tag Version'
  178.     ItemIndex = 1
  179.     Items.Strings = (
  180.       'ID3v1'
  181.       'ID3v2')
  182.     TabOrder = 10
  183.   end
  184.   object infoComposer: TEdit
  185.     Left = 84
  186.     Top = 200
  187.     Width = 200
  188.     Height = 21
  189.     TabOrder = 11
  190.   end
  191.   object infoEncodedBy: TEdit
  192.     Left = 84
  193.     Top = 224
  194.     Width = 200
  195.     Height = 21
  196.     TabOrder = 12
  197.   end
  198.   object infoURL: TEdit
  199.     Left = 84
  200.     Top = 176
  201.     Width = 200
  202.     Height = 21
  203.     TabOrder = 13
  204.   end
  205. end
  206.